autofill 배경 변경

✒️ 2025-05-16 12:36 내용 수정


참고 자료 : css-tricks change-autocomplete-styles-webkit-browsers, velog docchi 태그 자동완성 시 배경색 변경, mdn web docs CSS Cascade

문제 상황

css_autofill 1.png

css_autofill 2.png

css_autofill 3.png


해결 방법

input:-webkit-autofill, 
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	border : none;
	-webkit-text-fill-color: white;
	-webkit-box-shadow: 0 0 0px 1000px #303030 inset;
    box-shadow: 0 0 0px 1000px #303030 inset;
	transition: background-color 5000x ease-in-out 0s;
}
input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
	-webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #303030 inset;
    box-shadow: 0 0 0px 1000px #303030 inset;
    transition: background-color 5000s ease-in-out 0s;
}

css_autofill 4.png

css_autofill 5.png